home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d10 / draftman.arc / INSTALL.BAT < prev    next >
DOS Batch File  |  1986-02-20  |  3KB  |  107 lines

  1. echo off
  2. cls
  3. if %1 == c goto harddisk
  4. if %1 == a goto floppy
  5. echo You should decide whether you want to install The Draftsman
  6. echo on a hard disk or floppy.
  7. echo Type    Install c   (not c:)      to install on a hard disk.
  8. echo Type    Install a   (not a:)      to install on a floppy disk.
  9. goto stop
  10. :floppy
  11. echo You will need to create two diskettes before using The Draftsman.
  12. echo The first disk will contain the program, the second will
  13. echo contain the manual.
  14. echo If you do not have two formatted disks ready now, press
  15. echo Ctrl-Break to stop the backup, and format two blanks.
  16. pause
  17. cls
  18. echo I will now prepare your program disk.
  19. echo Insert a formatted blank in drive b:
  20. pause
  21. copy Drawman.exe b:/v
  22. copy help.dqt b:/v
  23. b:
  24. a:doc b:help.dqt
  25. a:
  26. del b:help.dqt
  27. copy vio.dat b:/v
  28. copy menu.dat b:/v
  29. copy error.dat b:/v
  30. copy work.dat b:/v
  31. copy filef.dat b:file.dat/v
  32. echo Drive B: contains these important Draftsman files:
  33. dir b:
  34. echo Please remove this disk from B: and label it The Draftsman - Working Copy
  35. pause
  36. cls
  37. echo I will now "unsqueeze" The Draftsman's manual. Place a blank disk in B:
  38. pause
  39. b:
  40. copy drawman.dqc b:/v
  41. a:doc b:drawman.dqc
  42. a:
  43. dir b:
  44. echo Your expanded Draftsman documentation is now on drive B:
  45. echo Please remove this disk from B: and label it The Draftsman-Documentation
  46. goto close
  47. :harddisk
  48. echo Hard disk installation in progress...
  49. c:
  50. cd\
  51. md\drawman
  52. cd\drawman
  53. a:
  54. copy Drawman.exe c:/v
  55. copy help.dqt c:/v
  56. copy vio.dat c:/v
  57. copy menu.dat c:/v
  58. copy error.dat c:/v
  59. copy work.dat c:/v
  60. copy fileh.dat c:file.dat/v
  61. copy drawman.dqc c:/v
  62. c:
  63. a:doc c:help.dqt
  64. del c:help.dqt
  65. a:doc c:drawman.dqc
  66. del c:drawman.dqc
  67. a:
  68. echo Here are The Draftsman files on your hard disk
  69. dir c:
  70. pause
  71. cls
  72. :close
  73. echo    Since you did not pay for The Draftsman, limited support
  74. echo    for the product should be expected.
  75. echo .
  76. echo    Some support may be obtained from a bulletin board (BBS)
  77. echo    which you may call with your computer. The number is
  78. echo    (202) 686-5360. It supports 300/1200 baud operation, and
  79. echo    operates 24 hours a day, 7 days a week. There is no
  80. echo    charge for accessing the BBS.
  81. echo .
  82. echo    The current version of the product may be downloaded from
  83. echo    this board.
  84. echo .
  85. pause
  86. cls
  87. echo The Draftsman is distributed with these conditions:
  88. echo   1. David Stang holds the copyright. No permission to
  89. echo      modify any of The Draftsman programs is granted.
  90. echo   2. The Draftsman is not to be sold. No consideration is
  91. echo      to be paid for its distribution, except for nominal
  92. echo      copying charges.
  93. echo   3. The Draftsman is to be shared freely with anyone who
  94. echo      may find it of benefit.
  95. echo   4. Happy users, who find The Draftsman of value, should
  96. echo      consider sending a contribution to David Stang
  97. echo      3631 Jenifer St NW, Washington DC 20015
  98. echo .
  99. echo .
  100. echo If you wish to print your documentation now, turn on your
  101. echo printer.
  102. if %1 == a echo Place your new documentation disk in drive A:
  103. echo Press Ctrl-Break now if you do not want to print documentation.
  104. echo Or, to print your documentation,
  105. pause
  106. copy %1:drawman.doc prn:
  107. :stop